DocumentFeeDto

data class DocumentFeeDto(taxes: List<DocumentTaxDto>?, beforeTax: BigDecimal?, afterTax: BigDecimal?, description: String?, type: FeeTypesEnum?)

Contains info about one applied fee.

Parameters

taxes
  • @param beforeTax * @param afterTax * @param description A user-presentable description of this fee.

type

Constructors

DocumentFeeDto
Link copied to clipboard
fun DocumentFeeDto(taxes: List<DocumentTaxDto>? = null, beforeTax: BigDecimal? = null, afterTax: BigDecimal? = null, description: String? = null, type: FeeTypesEnum? = null)
  • @param beforeTax * @param afterTax * @param description A user-presentable description of this fee.

Properties

afterTax
Link copied to clipboard
@SerializedName(value = afterTax)
val afterTax: BigDecimal? = null
beforeTax
Link copied to clipboard
@SerializedName(value = beforeTax)
val beforeTax: BigDecimal? = null
description
Link copied to clipboard
@SerializedName(value = description)
val description: String? = null
taxes
Link copied to clipboard
@SerializedName(value = taxes)
val taxes: List<DocumentTaxDto>? = null
  • @param beforeTax * @param afterTax * @param description A user-presentable description of this fee.

type
Link copied to clipboard
@SerializedName(value = type)
val type: FeeTypesEnum? = null